gtkclipboard: Fix typo
authorCarlos Garnacho <carlosg@gnome.org>
Wed, 10 May 2017 18:20:50 +0000 (20:20 +0200)
committerCarlos Garnacho <carlosg@gnome.org>
Wed, 10 May 2017 18:36:34 +0000 (20:36 +0200)
The standard atom is UTF8_STRING.

gtk/gtkclipboard.c

index b671128596f81a259bac949dec13b09b46e19a92..5314c8213e2e70a673fe1d1c9dfb05fd70f849ca 100644 (file)
@@ -1044,7 +1044,7 @@ request_text_received_func (GtkClipboard     *clipboard,
       if (target == gdk_atom_intern_static_string ("text/plain;charset=utf-8"))
         {
           gtk_clipboard_request_contents (clipboard,
-                                          gdk_atom_intern_static_string ("UTF8_TEXT"),
+                                          gdk_atom_intern_static_string ("UTF8_STRING"),
                                           request_text_received_func, info);
           return;
         }